home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / mc302emb.zip / LIBCF / IO.ASM < prev    next >
Assembly Source File  |  1994-03-18  |  314b  |  22 lines

  1. * Parallel I/O functions
  2. inp1    IN    1        Read port 1
  3.     RET
  4. inp2    IN    2        Read port 2
  5.     RET
  6. inp3    IN    3        Read port 3
  7.     RET
  8. inp4    IN    4        Read port 4
  9.     RET
  10. outp1    LD    2,S        Write port 1
  11.     OUT    1
  12.     RET
  13. outp2    LD    2,S        Write port 2
  14.     OUT    2
  15.     RET
  16. outp3    LD    2,S        Write port 3
  17.     OUT    3
  18.     RET
  19. outp4    LD    2,S        Write port 4
  20.     OUT    4
  21.     RET
  22.